搜索内容 : 搜索类别 :
   
 
网站用户名
管理员用户名
密  码
验证码
 
 
社区通
盈网
iephotoshop
彭城视窗
视频教程网
图片工具
中国周易
 
 
当前位置:HOME > 网络推广

图片上下滚动代码

发布时间 2006-09-23

 
首先,将图片大小为400*66像素的四张图片,分别命名为:05s.jpg;04s.jpg;03s.jpg;02s.jpg    然后上传至服务器的data/userpic/目录下。(如果能看懂代码里的那些注释语句,也可以按照自己的个性化需要来进行相关的修改。)

 将以下代码在编辑器的代码视图里插入到合适的位置:
以下是代码片段:

<SCRIPT language=JavaScript1.2> 
<!-- 
/*设置下面的参数。 设置scrollerwidth和scrollerheight参数,设置成滚动显示的图片中尺寸最大的。*/
var scrollerwidth=400
//以上的=400为滚动中最大图片的宽,单位为像素。
var scrollerheight=66
//以上的=66为滚动中最大图片的高,单位为像素。
var scrollerbgcolor='white'
//上面的var scrollerbgcolor='white' 这里设置的是滚动区域的背景颜色,可以把'white'修改为其它颜色。
//修改下面的每个图间暂停时间,本例为3秒。
var pausebetweenimages=3000
//改变下面的图像地址,如果希望logo都是带连接的,只要将#改为相应的链接地址。
var slideimages=new Array()
slideimages[0]='<a href=#><img src="../userlist/admin/data/userpic/05s.jpg" border=0"></a>'
slideimages[1]='<a href=#><img src="../userlist/admin/data/userpic/04s.jpg" border=0"></a>'
slideimages[2]='<a href=#><img src="../userlist/admin/data/userpic/03s.jpg" border=0"></a>'
slideimages[3]='<a href=#><img src="../userlist/admin/data/userpic/02s.jpg" border=0"></a>'

//////下面的行不要编辑///////////////////////
if (slideimages.length>1)
i=2
else
i=0
function move1(whichlayer){
tlayer=eval(whichlayer)
if (tlayer.top>0&&tlayer.top<=5){
tlayer.top=0
setTimeout("move1(tlayer)",pausebetweenimages)
setTimeout("move2(document.main.document.second)",pausebetweenimages)
return
}
if (tlayer.top>=tlayer.document.height*-1){
tlayer.top-=5
setTimeout("move1(tlayer)",100)
}
else{
tlayer.top=scrollerheight
tlayer.document.write(slideimages[i])
tlayer.document.close()
if (i==slideimages.length-1)
i=0
else
i++
}}
function move2(whichlayer){
tlayer2=eval(whichlayer)
if (tlayer2.top>0&&tlayer2.top<=5){
tlayer2.top=0
setTimeout("move2(tlayer2)",pausebetweenimages)
setTimeout("move1(document.main.document.first)",pausebetweenimages)
return
}
if (tlayer2.top>=tlayer2.document.height*-1){
tlayer2.top-=5
setTimeout("move2(tlayer2)",100)
}
else{
tlayer2.top=scrollerheight
tlayer2.document.write(slideimages[i])
tlayer2.document.close()
if (i==slideimages.length-1)
i=0
else
i++
}}
function move3(whichdiv){
tdiv=eval(whichdiv)
if (tdiv.style.pixelTop>0&&tdiv.style.pixelTop<=5){
tdiv.style.pixelTop=0
setTimeout("move3(tdiv)",pausebetweenimages)
setTimeout("move4(second2)",pausebetweenimages)
return
}
if (tdiv.style.pixelTop>=tdiv.offsetHeight*-1){
tdiv.style.pixelTop-=5
setTimeout("move3(tdiv)",100)
}
else{
tdiv.style.pixelTop=scrollerheight
tdiv.innerHTML=slideimages[i]
if (i==slideimages.length-1)
i=0
else
i++
}
}
function move4(whichdiv){
tdiv2=eval(whichdiv)
if (tdiv2.style.pixelTop>0&&tdiv2.style.pixelTop<=5){
tdiv2.style.pixelTop=0
setTimeout("move4(tdiv2)",pausebetweenimages)
setTimeout("move3(first2)",pausebetweenimages)
return
}
if (tdiv2.style.pixelTop>=tdiv2.offsetHeight*-1){
tdiv2.style.pixelTop-=5
setTimeout("move4(second2)",100)
}
else{
tdiv2.style.pixelTop=scrollerheight
tdiv2.innerHTML=slideimages[i]
if (i==slideimages.length-1)
i=0
else
i++
}}
function startscroll(){
if (document.all){
move3(first2)
second2.style.top=scrollerheight
}
else if (document.layers){
move1(document.main.document.first)
document.main.document.second.top=scrollerheight+5
document.main.document.second.visibility='show'
}}
window.onload=startscroll
//-->
</SCRIPT>
<ILAYER id=main bgcolor="&amp;;" width="&amp;;" height="&amp;;"><LAYER id=first width="&amp;;" left="0" top="1">
<SCRIPT language=JavaScript1.2>
if (document.layers)
document.write(slideimages[0])
</SCRIPT>
</LAYER><LAYER id=second width="&amp;;" left="0" top="0" visibility="hide">
<SCRIPT language=JavaScript1.2>
if (document.layers)
document.write(slideimages[1])
</SCRIPT>
</LAYER></ILAYER>
<P>
<SCRIPT language=JavaScript1.2>
<!-- 
if (document.all){
document.writeln('<span id="main2" style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hiden;background-color:'+scrollerbgcolor+'">')
document.writeln('<div style="position:absolute;width:'+scrollerwidth+';height:'+scrollerheight+';clip:rect(0 '+scrollerwidth+' '+scrollerheight+' 0);left:0;top:0">')
document.writeln('<div id="first2" style="position:absolute;width:'+scrollerwidth+';left:0;top:1;">')
document.write(slideimages[0])
document.writeln('</div>')
document.writeln('<div id="second2" style="position:absolute;width:'+scrollerwidth+';left:0;top:0">')
document.write(slideimages[1])
document.writeln('</div>')
document.writeln('</div>')
document.writeln('</span>')
}
//--></SCRIPT>
</P>

 最后实现的效果如下:

首 页| 关于点点 | 建站帮助 | 客服中心 | 友情链接 | 服务条款 | 付款方式 | 广告服务 | 联系我们 | 网站地图  免费代码大全

都市圈   网页教学网   生成的Logo图像   CC视频专家   中国个人站长站   叶子树   生成的Logo图像

本站还提供无锡本地建站服务:无锡网站建设  无锡央视广告  无锡央视展播  无锡企业媒体网站信息发布  无锡企业媒体专访

业务部邮箱:dd118@dd118.com   客服部邮箱:kefu@dd118.com  技术部邮箱:jishu@dd118.com  

Copyright @2005-2019 diandiannet Inc 版权所有: 无锡国搜信息科技有限公司(原无锡点点网络科技有限公司)

                             苏ICP备07508751号                                   ip5108.htm 流量专家

网站管理